home *** CD-ROM | disk | FTP | other *** search
/ Logiciels PC Special 3 / Logiciel PC - Hors-Serie 3.iso / Logs / consoles / neogeo / PKBMame / COMBO.TXT next >
Text File  |  1999-04-13  |  8KB  |  253 lines

  1.  
  2. KBMAME Combo Guide v1.0
  3. -----------------------
  4.  
  5. Table of Contents
  6.  
  7.    I) Introduction and Basics
  8.   II) Programming combos
  9.  III) Combo shortcuts
  10.   IV) Advanced Combos
  11.    V) Sample
  12.   VI) Troubleshooting
  13.  VII) Contacting the Author
  14. VIII) Important notes
  15.   IX) What's new in this version
  16.  
  17.  
  18. I) Introduction and Basics
  19.  
  20. Starting with version 9, KBMAME now supports programmable combos. Combos are
  21. placed in combo files (.CMB) in the combo directory. Each game has its own
  22. combo file, with the same name as the game but with the .cmb extension.
  23.  
  24. ex :
  25.   Kof94 combos -> kof94.cmb
  26.   Kof98 combos -> kof98.cmb
  27.  
  28. The combo file for the game is loaded automatically from the combo directory.
  29. The default combo directory is COMBO, and can be changed in the mame.cfg file.
  30.  
  31. Up to 8 combos can be placed in the combo file. To use these combos, Buttons 5-8
  32. can be set to Combo 1, Combo 2, ..., Combo 8 in the Dipswitch menu.
  33.  
  34. ex :
  35.   If button 5 is set to Combo 1, pressing it will execute the first combo in
  36.   the loaded combo file.
  37.  
  38. *** VERY IMPORTANT ***
  39.   All combos assume that P1 is facing right and P2 is facing left. To switch directions,
  40.   P1 must hold left+combo button and P2 must hold right+combo button.
  41.  
  42. ex :
  43.  
  44. Combo 1 is set to a fireball motion (quarter circle down to forward).
  45. Button 5 is set to Combo 1.
  46. If P1 faces right and P2 faces left,
  47.   P1 presses Button 5, P1 throws a fireball.
  48.   P2 presses Button 5, P2 throws a fireball.
  49. If P1 and P2 swap positions (P1 faces left and P2 faces right),
  50.   P1 presses left+Button 5, P1 throws a fireball.
  51.   P2 presses right+Button 5, P2 throws a fireball.
  52.  
  53.  
  54. Why the need for this? Well, KBMAME is first and foremost a keyboard-friendly version of MAME for
  55. Neogeo games. And let's face it, some games' moves are really hard to pull off (KOF94 Athena's 
  56. Shining Crystal Bit, KOF94 Joe's Tiger Kick, Condor's 360/720-degree moves in Breakers, etc.).
  57.  
  58. And it's nice to surprise a friend by pulling off a 21-hit combo on him when he knows you can
  59. barely throw a fireball with any degree of reliability :)
  60.  
  61. II) Programming combos
  62.  
  63. The combo file is a simple text file with a .cmb extension. Each combo is on a separate line.
  64. Combos are defined using these symbols : u,d,l,r,uf,df,ub,db to specify directions and A,B,C,D
  65. to specify the four NeoGeo buttons.
  66.  
  67. n=neutral
  68. u=up
  69. d=down
  70. l=left
  71. r=right
  72. uf=diagonal up and forward
  73. df=diagonal down and forward
  74. ub=diagonal up and back
  75. db=diagonal down and back
  76.  
  77. Directions AND button presses are entered with plus signs, such as f + A or 
  78. b hcb ub + B + C (Athena's Shining Crystal Bit in Kof94) Note the spaces between each
  79. symbol.
  80.  
  81. Ex 1.
  82.  
  83. To do a fireball motion with A (quarter circle down to forward) :
  84.  
  85. 1 d df f + A end
  86.  
  87. The number refers to the speed of the combo in frames (1=fastest). In this case, the number 1 means that each part of the 
  88. combo lasts one frame. Some games require slower motions, while some games require faster ones. The speed of the combo
  89. can be changed midway by inserting the appropriate number. The word end marks the
  90. end of the combo.
  91.  
  92. Ex 2.
  93.  
  94. To do a dragon punch motion with C (forward,down,diagonal down and forward) :
  95.  
  96. 2 f d df + C end
  97.  
  98. In this case, the speed is two because most games require a slower motion for the
  99. dragon punch.
  100.  
  101. *** VERY IMPORTANT ***
  102. Each combo MUST start with the speed.
  103. Each element of the combo MUST be separated with spaces
  104. Combos are CASE-SENSITIVE. Use lowercase for directions and uppercase for buttons.
  105. Each combo MUST finish with the end keyword.
  106.  
  107. III) Combo shortcuts
  108.  
  109. Some of the more common moves have corresponding shortcuts as listed below :
  110.  
  111. qcf = quarter circle forward
  112. qcb = quarter circle backward
  113. hcf = half circle forward
  114. hcb = half circle backward
  115. dp = forward,down,diagonal down/forward
  116. rdp = back,down,diagonal down/back
  117.  
  118. Ex.
  119.  
  120. To do Kyo's Serpent Wave DM in KOF 94, the combo file should contain
  121.  
  122. 2 qcb hcf + C end
  123.  
  124. To do Kyo's Twilight Ride in KOF94, the combo file should contain
  125.  
  126. 2 rdp D end
  127.  
  128.  
  129. IV) Advanced Combos
  130.  
  131. In KOF98, Blue Mary has a combo that goes like this :
  132. Standing C (two hits), forward+A, qcf,hcb+C
  133.  
  134. This is entered as:
  135.  
  136. 7 C n n n f + A 3 qcf hcb C end
  137.  
  138. Translation:
  139. Press C for 7 frames.
  140. Neutral for 21 frames (we are waiting for the two hits to finish).
  141. Press forward and A for 7 frames
  142. Set combo speed to 3
  143. Quarter circle forward, Half circle back then C
  144.  
  145. One of my favorite Terry combos (KOF98) goes like this :
  146. Standing C (two hits),df+C,Power Charge (hcf+D), Rising Tackle (dp+C)
  147.  
  148. Entered as :
  149.  
  150. 8 C n n 5 df + C n 2 hcf D 12 n 2 dp C end
  151.  
  152. Translation:
  153. Press C for 8 frames.
  154. Neutral for 16 frames (Wait for second hit to finish)
  155. Diagonal down/forward and C for 5 frames
  156. Neutral for 5 frames (Wait for uppercut to finish)
  157. Set combo speed to 2
  158. Half circle forward+D
  159. Wait 12 frames (Wait till the power charge starts)
  160. Set combo speed to 2
  161. Dragon Punch+C (Cancel into Rising Tackle)
  162.  
  163. Another of my favorite combos is KOF98 Goro's bug combo :
  164. Down+D,qcb+B (Chou Ukemi),dp+A (Minelayer), hcf+C (Stump Throw)
  165.  
  166. Entered as:
  167.  
  168. 5 d + D 3 n 2 qcb B 30 n 2 dp A 60 n 2 hcf C end
  169.  
  170. Translation:
  171.  
  172. d+D for 5 frames (Trip opponent)
  173. Neutral for 15 frames (Wait a bit before cancelling)
  174. Set combo speed to 2
  175. qcb B (Do Goro's Ukemi/roll)
  176. Neutral for 30 frames (Wait for roll to finish)
  177. dp A (Do the Minelayer)
  178. Neutral for 60 frames (wait for Minelayer to hit and opponent to land)
  179. hcf C (scoop opponent from the ground with Stump Throw)
  180.  
  181. Don't do this combo too near the opponent or else Goro will roll to the other side
  182. and stuff the combo.
  183.  
  184.  
  185. V) Sample
  186.  
  187. A sample combo file for Breakers Revenge is included in the zip (breakrev.cmb).
  188. This file contains two pre-programmed moves (I'm getting sleepy, OK?):
  189.  
  190. Combo 1 - Condor's 360-degree throw
  191. Combo 2 - Condor's 720-degree super throw
  192.  
  193. Usage :
  194.  
  195. Load up Breakers Revenge and pick Condor as your player.
  196.  
  197. Set any of buttons 5-8 to Combo 1 and Combo 2 in the dip switch menu.
  198.  
  199. Go close to the opponent and hit the appropriate button (remember to hold towards the opponent
  200. when you're facing the wrong side).
  201.  
  202. DO NOT MASH THE BUTTONS! WOLVERINE IS NOT IN ANY NEOGEO GAME! (yet)
  203.  
  204.  
  205. VI) Troubleshooting
  206.  
  207. If your combo doesn't work, use the ff. checklist to pinpoint problems :
  208.  
  209. 1) Timing is everything. Try different combo speeds and delays.
  210. 2) Check the spacing of the combo file (remember, spaces between each element!)
  211. 3) Remember, directions are lowercase and buttons are uppercase.
  212. 4) Timing is everything. Try different combo speeds and delays. 
  213. 5) The combo MUST begin with a number (combo speed).
  214. 6) Timing is everything. Try different combo speeds and delays.
  215. 7) The combo file can contain only 8 combos, each on a separate line.
  216. 8) Put the combo file in the combo directory.
  217. 9) Make sure you're not facing the wrong side (press towards the opponent, then press the button)
  218.  
  219. Oh, and don't forget that timing is very important :)
  220.  
  221.  
  222. VII) Contacting the Author
  223.  
  224. My homepage is at http://members.xoom.com/Deimos0. You can find my e-mail address there.
  225. Why not just list it here? Because I plan to switch e-mail accounts soon. (Oh, all right,
  226. my current one is deimos0@usa.net, but I don't think I'll be using that for much longer)
  227.  
  228. DO NOT mail me asking why xxx combo does not work. It's all a question of timing or file format.
  229.  
  230. DO mail me if you have a particularly devastating combo you'd like to share. If I get enough
  231. submissions, I'll put up a page with the best combos. 
  232.  
  233. DO mail me if you like the programmable-combo feature. I'd like to know if I'm wasting my time :)
  234. If enough people like it, I'll continue to improve it. If not, it will either be removed or 
  235. stay unchanged.
  236.  
  237. DO send in suggestions for improving this feature. (ex. a button to stop the currently executing combo)
  238.  
  239. VIII) Important notes
  240.  
  241. Don't rely on the automatic combos too much or your arcade skills will get rusty :)
  242.  
  243. If any of you guys have a copy of D&D Collection for the Sega Saturn that you're not using,
  244. feel free to send it my way. It's my favorite game of all time, but it's just not available over 
  245. here where I can get my hands on it :(
  246.  
  247.  
  248. IX) What's new in this version
  249.  
  250. 4/13/99 - Everything!
  251.  
  252.  
  253. - Deimos (http://members.xoom.com/Deimos0)